ad1f7262b12686c1107da96b54debe0348257c2d,src/test/java/com/fasterxml/jackson/dataformat/csv/deser/SequenceRecoveryTest.java,SequenceRecoveryTest,testSequenceRecovery,#,41

Before Change


            it.nextValue();
            fail("Shouldn't have passed");
        } catch (JsonMappingException e) {
            verifyException(e, "'invalid': not a valid");
        }

        // but third is fine again

After Change


            it.nextValue();
            fail("Shouldn't have passed");
        } catch (JsonMappingException e) {
            verifyException(e, "not a valid Integer value");
            verifyException(e, "\"garbage\"");
        }
        assertFalse(it.hasNext());